Socket
Socket
Sign inDemoInstall

@smithy/util-hex-encoding

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smithy/util-hex-encoding

Converts binary buffers to and from lowercase hexadecimal encoding


Version published
Weekly downloads
15M
decreased by-1.41%
Maintainers
2
Weekly downloads
 
Created

What is @smithy/util-hex-encoding?

@smithy/util-hex-encoding is a utility package for encoding and decoding hexadecimal strings. It is part of the Smithy framework, which is used for building SDKs and other tools.

What are @smithy/util-hex-encoding's main functionalities?

Hex Encoding

This feature allows you to convert a buffer or byte array into a hexadecimal string.

const { toHex } = require('@smithy/util-hex-encoding');
const buffer = Buffer.from('hello');
const hexString = toHex(buffer);
console.log(hexString); // Output: 68656c6c6f

Hex Decoding

This feature allows you to convert a hexadecimal string back into a buffer or byte array.

const { fromHex } = require('@smithy/util-hex-encoding');
const hexString = '68656c6c6f';
const buffer = fromHex(hexString);
console.log(buffer.toString()); // Output: hello

Other packages similar to @smithy/util-hex-encoding

FAQs

Package last updated on 14 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc